MinLength Property (AutoCompleteBase<T>)
In This Topic
Gets or sets the minimum input length to trigger autocomplete suggestions.
Syntax
'Declaration
<System.ComponentModel.DefaultValueAttribute(2)>
Public Overridable Property MinLength As System.Integer
'Usage
Dim instance As AutoCompleteBase(Of T)
Dim value As System.Integer
instance.MinLength = value
value = instance.MinLength
[System.ComponentModel.DefaultValue(2)]
public virtual System.int MinLength {get; set;}
public read-write property MinLength: System.Integer; virtual;
System.ComponentModel.DefaultValueAttribute(2)
public function get,set MinLength : System.int
[System.ComponentModel.DefaultValue(2)]
public: __property virtual System.int get_MinLength();
public: __property virtual void set_MinLength(
System.int value
);
[System.ComponentModel.DefaultValue(2)]
public:
virtual property System.int MinLength {
System.int get();
void set ( System.int value);
}
See Also